home *** CD-ROM | disk | FTP | other *** search
/ Oh!X 2000 Spring / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).7z / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).bin / F2JW / ConFrame.cpp < prev    next >
C/C++ Source or Header  |  1999-12-31  |  1KB  |  47 lines

  1. // CConFrame.cpp : インプリメンテーション ファイル
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "f2jw.h"
  6. #include "ConFrame.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CConFrame
  16.  
  17. IMPLEMENT_DYNCREATE(CConFrame, CMDIChildWnd)
  18.  
  19. CConFrame::CConFrame()
  20. {
  21.     CFrnApp*    pApp = (CFrnApp*)AfxGetApp();
  22.     pApp->m_pFrameConsole = this;
  23. }
  24.  
  25. CConFrame::~CConFrame()
  26. {
  27.     CFrnApp*    pApp = (CFrnApp*)AfxGetApp();
  28.     pApp->m_pFrameConsole = NULL;
  29. }
  30.  
  31.  
  32. BEGIN_MESSAGE_MAP(CConFrame, CMDIChildWnd)
  33.     //{{AFX_MSG_MAP(CConFrame)
  34.         // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
  35.     //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CConFrame メッセージ ハンドラ
  40.  
  41. BOOL CConFrame::PreCreateWindow(CREATESTRUCT& cs) 
  42. {
  43.     // TODO: この位置に固有の処理を追加するか、または基本クラスを呼び出してください
  44.     cs.style &= ~FWS_ADDTOTITLE;
  45.     return CMDIChildWnd::PreCreateWindow(cs);
  46. }
  47.